home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_gtk / INCLUDE / GTK / GTKHANDL.{16 < prev    next >
Text File  |  1999-09-17  |  3KB  |  104 lines

  1. /* GTK - The GIMP Toolkit
  2.  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
  3.  * Copyright (C) 1998 Elliot Lee
  4.  *
  5.  * This library is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Library General Public
  7.  * License as published by the Free Software Foundation; either
  8.  * version 2 of the License, or (at your option) any later version.
  9.  *
  10.  * This library is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * Library General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU Library General Public
  16.  * License along with this library; if not, write to the
  17.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  18.  * Boston, MA 02111-1307, USA.
  19.  */
  20.  
  21. /*
  22.  * Modified by the GTK+ Team and others 1997-1999.  See the AUTHORS
  23.  * file for a list of people on the GTK+ Team.  See the ChangeLog
  24.  * files for a list of changes.  These files are distributed with
  25.  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
  26.  */
  27.  
  28. /* The GtkHandleBox is to allow widgets to be dragged in and out of
  29.  * their parents.
  30.  */
  31.  
  32.  
  33. #ifndef __GTK_HANDLE_BOX_H__
  34. #define __GTK_HANDLE_BOX_H__
  35.  
  36.  
  37. #include <gdk/gdk.h>
  38. #include <gtk/gtkbin.h>
  39.  
  40.  
  41. #ifdef __cplusplus
  42. extern "C" {
  43. #endif /* __cplusplus */
  44.  
  45.  
  46. #define GTK_HANDLE_BOX(obj)          GTK_CHECK_CAST (obj, gtk_handle_box_get_type (), GtkHandleBox)
  47. #define GTK_HANDLE_BOX_CLASS(klass)  GTK_CHECK_CLASS_CAST (klass, gtk_handle_box_get_type (), GtkHandleBoxClass)
  48. #define GTK_IS_HANDLE_BOX(obj)       GTK_CHECK_TYPE (obj, gtk_handle_box_get_type ())
  49.  
  50.  
  51. typedef struct _GtkHandleBox       GtkHandleBox;
  52. typedef struct _GtkHandleBoxClass  GtkHandleBoxClass;
  53.  
  54. struct _GtkHandleBox
  55. {
  56.   GtkBin bin;
  57.  
  58.   GdkWindow      *bin_window;    /* parent window for children */
  59.   GdkWindow      *float_window;
  60.   GtkShadowType   shadow_type;
  61.   guint          handle_position : 2;
  62.   guint          float_window_mapped : 1;
  63.   guint          child_detached : 1;
  64.   guint          in_drag : 1;
  65.   guint          shrink_on_detach : 1;
  66.  
  67.   gint            snap_edge : 3; /* -1 == unset */
  68.   
  69.   /* Variables used during a drag
  70.    */
  71.   gint deskoff_x, deskoff_y; /* Offset between root relative coordinates
  72.                   * and deskrelative coordinates */
  73.   GtkAllocation   attach_allocation;
  74.   GtkAllocation   float_allocation;
  75. };
  76.  
  77. struct _GtkHandleBoxClass
  78. {
  79.   GtkBinClass parent_class;
  80.  
  81.   void    (*child_attached)    (GtkHandleBox    *handle_box,
  82.                  GtkWidget    *child);
  83.   void    (*child_detached)    (GtkHandleBox    *handle_box,
  84.                  GtkWidget    *child);
  85. };
  86.  
  87.  
  88. guint       gtk_handle_box_get_type        (void);
  89. GtkWidget*  gtk_handle_box_new             (void);
  90. void        gtk_handle_box_set_shadow_type      (GtkHandleBox    *handle_box,
  91.                                                  GtkShadowType    type);
  92. void        gtk_handle_box_set_handle_position  (GtkHandleBox    *handle_box,
  93.                              GtkPositionType  position);
  94. void        gtk_handle_box_set_snap_edge        (GtkHandleBox    *handle_box,
  95.                          GtkPositionType  edge);
  96.  
  97.  
  98.  
  99. #ifdef __cplusplus
  100. }
  101. #endif /* __cplusplus */
  102.  
  103. #endif /* __GTK_HANDLE_BOX_H__ */
  104.